Open the HTML document you have been working on. Here is mine:
<HTML>
<HEAD>
<TITLE>
George's page of lists
</TITLE>
</HEAD>
<BODY>
<H1>George's page of lists</H1>
<P>
<HR>
<P>
This is my page of lists. It contains lists of things I like. But first let's define what a list is:
<P>
<DL>
<DT>List
<DD>A series of words.
</DL>
<P>
Here is a list of things I like to do:
<P>
<UL>
<LI>reading
<LI>skiing
<LI>hiking
<LI>running
</UL>
<P>
Here is a list of my favorite foods in order:
<P>
<OL>
<LI>sushi
<LI>burritos
<LI>deep dish pizza
<LI>spinach salad
</OL>
<P> --------------> This is where I will insert the link code.
</BODY>
</HTML>
Now we will add a link to another page. In the interest of saving space I will only show the code that I use and not the entire document. This code will be inserted after the last <P> tag. Refer to lists.html to view the entire page of code.
The link code
This is my favorite list of all:
<P>
<A HREF="http://www.cbs.com/lateshow/ttlist.html">Letterman's Top Ten List </A>
<P>
Save your document and then open it with your browser. You should see the text you added plus the text that is between the anchor tags should be a different color and underlined. This tells you the link is active.
Note: If you click on this link now, it will only connect you to the site if you have internet access open. Otherwise it will give you some sort of error message depending on the browser you use.
If you do not see something similar to what I described then refer back to the troubleshooting tips in drills 1-3.